home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / PASSDK30.ZIP;1 / DISK1.ZIP / PAS / SUBS / LARGE.BAT next >
Encoding:
DOS Batch File  |  1993-02-22  |  1.2 KB  |  89 lines

  1. rem
  2. rem Rebuild the MVxLIB.LIB  and MVHxLIB.LIB
  3. rem
  4.     if ()==(%1) goto help
  5.  
  6.     set SMODEL=L
  7.     set MMODEL=4
  8.  
  9.     del ..\inc\mv%SMODEL%lib.lib
  10.  
  11. rem
  12. rem build the CDROM code
  13. rem
  14.     cd cdrom
  15.     del %SMODEL%*.obj
  16.     call large %1
  17.     cd..
  18.  
  19. rem
  20. rem build the FM code
  21. rem
  22.     cd FM
  23.     del %SMODEL%*.obj
  24.     call large %1
  25.     cd..
  26.  
  27. rem
  28. rem build the miscellaneous code
  29. rem
  30.     cd misc
  31.     del %SMODEL%*.obj
  32.     call large %1
  33.     cd..
  34.  
  35. rem
  36. rem build the MVSOUND code
  37. rem
  38.     cd mvsound
  39.     del %SMODEL%*.obj
  40.     call large %1
  41.     cd..
  42.  
  43. rem
  44. rem build the MIDI code
  45. rem
  46.     cd midi
  47.     del %SMODEL%*.obj
  48.     call large %1
  49.     cd..
  50.  
  51. rem
  52. rem build the PCM code
  53. rem
  54.     cd pcm
  55.     del %SMODEL%*.obj
  56.     call large %1
  57.     cd..
  58.  
  59. rem
  60. rem build the VIDEO code
  61. rem
  62.     cd video
  63.     del %SMODEL%*.obj
  64.     call large %1
  65.     cd..
  66.  
  67. rem
  68. rem build the MIXERS code
  69. rem
  70.     cd mixers
  71.     del %SMODEL%*.obj
  72.     call large %1
  73.     cd..
  74.  
  75.     goto done
  76.  
  77. :help
  78.     @echo off
  79.     echo 
  80.     echo To Use: MAKEL [MSC or BCC]
  81.     echo 
  82.     echo Where:         MSC specifies Microsoft C
  83.     echo                BCC specifies Borland C
  84.     echo 
  85.     pause
  86.  
  87. :done
  88.  
  89.